The Timer Control plays an important role in the development of programs both Client side and Server side development as well as in Windows Services. With the help of Timer Control we can raise events at a specific interval of time without the interaction of another thread.
How to use Timer Control
Drag and drop Timer control from toolbox on the window Form.


Code:
private void frmTimer_Load(object sender, EventArgs e)
{
//After 5000 milisecond time will update
timer1.Interval = 5000;
}
private void timer1_Tick(object sender, EventArgs e)
{
//Current time will show in label
label1.Text= DateTime.Now.ToLongTimeString();
}

Time will update continuously after
every 5000 millisecond.

Timer Properties
Interval: Set the interval at which to
raise the Elapsed event.
Enabled: Set a value indicating whether the Timer should raise the Elapsed event. By default it set to false.
Leave Comment
2 Comments